home *** CD-ROM | disk | FTP | other *** search
- .NEW AUTOMENU MENU DEFINITION FILE
- .CREATED BY AUTOMAKE FOR AUTOMENU
- .BY MARSHALL MAGEE
- ................................................
- .Last Updated On 11/11/88
- ................................................
- %AUTOMENU(R) DOS Functions Menu
- *Test For a Subdirectory
- ?Check for the Existence of a Subdirectory
- >Please input the NAME of the Subdirectory
- >you wish to test the existence of and then
- >press Return.
- >
- >
- >For example, to test for \AUTOMENU, type
- >just "AUTOMENU" (no quotes) and press Return.
- >
- >Press ESCape to exit to Menu.
- >
- <
- +echo off
- +cls
- +cd\
- +if exist %1\a goto EXIST
- +echo test > %1\a
- +cls
- +if exist %1\a goto EXIST2
- +echo **********************
- +echo * Sorry, Subdirectory
- +echo * \%1
- +echo * does NOT Exist !
- +echo **********************
- +goto DONE
- +:EXIST2
- +del %1\a
- +:EXIST
- +echo *********************
- +echo * Yes! Subdirectory
- +echo * \%1
- +echo * Already Exists!
- +echo *********************
- +:DONE
- +echo Test Complete - To Return to AUTOMENU,
- +pause
- +auto batch.mdf
- *Make Log Entry
- ?Enter Date and Time Stamp Into REPORTS.LOG
- >Please Enter Your Name on the Line Below
- >
- >
- >
- <
- +echo off
- +cls
- +echo Now Making Entry Into REPORTS.LOG for %1
- +echo .
- +echo .
- +echo .
- +echo .>>REPORTS.LOG
- +echo Log Entry Made By %1>>REPORTS.LOG
- +date < crlf.inp >>REPORTS.LOG
- +time < crlf.inp >>REPORTS.LOG
- +echo .>>REPORTS.LOG
- +echo .
- +echo .
- +echo Entry Made For %1 - Press a Key to Return to Menu
- +pause
- +auto batch.mdf
- *Read Log Entries
- ?Display Log Entries on Screen
- =type REPORTS.LOG | more
- *Delete Log File
- ?Erase All Report Log Files - Use Password
- ^password
- +echo Now Deleting All .LOG Files . . . . .
- +echo .
- +echo .
- +del reports.log > nul
- +echo .
- +echo Files Deleted - To Return to AUTOMENU,
- +pause
- +auto batch.mdf
- *Return to Main Menu
- @AUTOMENU.MDF
- *Exit to Disk Operating System
- ?Return to DOS
- +ECHO ┌────────────────────────────────┐
- +ECHO │░░░▓▓▓▒ Exiting to DOS ▒▓▓▓░░░│
- +ECHO ├────────────────────────────────┤
- +ECHO ├────────────────────────────────┤
- +ECHO │ Please Enter »»» AUTO ««« │
- +ECHO │ To Return to Automenu │
- +ECHO ├────────────────────────────────┤
- +ECHO └────────────────────────────────┘
- #End of BATCH.MDF Menu Definition File